dirty read meaning in Chinese
错读, 乱读
读脏数据
脏读
Examples
- Read uncommitted ? permits dirty reads but not lost updates
未授权读取允许脏读取,但不允许更新丢失。 - Specifies that dirty reads are allowed
指定允许脏读。 - This can only be used for systems that can operate with dirty reads
此隔离级别只能用于能对脏读进行操作的系统。 - This prevents dirty reads
这样可以避免脏读。 - Dirty read : thread one writes data ; thread two reads what thread one wrote
线程1写入了数据,线程2读取了线程1所写入的数据。